home *** CD-ROM | disk | FTP | other *** search
/ Next Step: Mars? / Next Step Mars (1994)(IVI).iso / shared.dir / 00673_Script_cleanUpMovie < prev    next >
Text File  |  1994-12-01  |  493b  |  18 lines

  1. on cleanUpMovie
  2.   -- clean up any possible movie stuff
  3.   -- this stuff won't hurt even if  there isn't movei
  4.   global puppetNum
  5.   global TextSpriteNum
  6.   
  7.   puppetSprite puppetNum, false
  8.   puppetSprite TextSpriteNum, false
  9.   set the visible of sprite 11 to true
  10.   
  11.   put the castNum of sprite 10 into movNum
  12.   if movNum > 0 then
  13.     if the castType of cast movNum = #digitalVideo then
  14.       set the movierate of sprite 10 to 0
  15.     end if
  16.   end if
  17.   unLoadCast
  18. end cleanUpMovie